home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Online / Apache / lib / php.ini-optimized < prev   
Encoding:
INI File  |  2001-03-06  |  23.6 KB  |  495 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About this file ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ;
  7. ; This is the 'optimized', PHP 4-style version of the php.ini-dist file.
  8. ; For general information about the php.ini file, please consult the php.ini-dist
  9. ; file, included in your PHP distribution.
  10. ;
  11. ; This file is different from the php.ini-dist file in the fact that it features
  12. ; different values for several directives, in order to improve performance, while
  13. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  14. ; PHP 3.  Please make sure you read what's different, and modify your scripts
  15. ; accordingly, if you decide to use this file instead.
  16. ;
  17. ; - allow_call_time_pass_reference = Off
  18. ;     It's not possible to decide to force a variable to be passed by reference
  19. ;     when calling a function.  The PHP 4 style to do this is by making the
  20. ;     function require the relevant argument by reference.
  21. ; - register_globals = Off
  22. ;     Global variables are no longer registered for input data (POST, GET, cookies,
  23. ;     environment and other server variables).  Instead of using $foo, you must use
  24. ;     $HTTP_POST_VARS["foo"], $HTTP_GET_VARS["foo"], $HTTP_COOKIE_VARS["foo"], 
  25. ;     $HTTP_ENV_VARS["foo"] or $HTTP_SERVER_VARS["foo"], depending on which kind
  26. ;     of input source you're expecting 'foo' to come from.
  27. ; - register_argc_argv = Off
  28. ;     Disables registration of the somewhat redundant $argv and $argc global
  29. ;     variables.
  30. ; - magic_quotes_gpc = Off
  31. ;     Input data is no longer escaped with slashes so that it can be sent into
  32. ;     SQL databases without further manipulation.  Instead, you should use the
  33. ;     function addslashes() on each input element you wish to send to a database.
  34. ; - variables_order = "GPCS"
  35. ;     The environment variables are not hashed into the $HTTP_ENV_VARS[].  To access
  36. ;     environment variables, you can use getenv() instead.
  37.  
  38.  
  39. ;;;;;;;;;;;;;;;;;;;;
  40. ; Language Options ;
  41. ;;;;;;;;;;;;;;;;;;;;
  42.  
  43. engine            =    On    ; Enable the PHP scripting language engine under Apache
  44. short_open_tag    =    On    ; allow the <? tag.  otherwise, only <?php and <script> tags are recognized.
  45. asp_tags        =    Off ; allow ASP-style <% %> tags
  46. precision        =    14    ; number of significant digits displayed in floating point numbers
  47. y2k_compliance    =    Off    ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
  48. output_buffering    = Off    ; Output buffering allows you to send header lines (including cookies)
  49.                             ; even after you send body content, in the price of slowing PHP's
  50.                             ; output layer a bit.
  51.                             ; You can enable output buffering by in runtime by calling the output
  52.                             ; buffering functions, or enable output buffering for all files
  53.                             ; by setting this directive to On.
  54. output_handler        =        ; You can redirect all of the output of your scripts to a function,
  55.                             ; that can be responsible to process or log it.  For example,
  56.                             ; if you set the output_handler to "ob_gzhandler", than output
  57.                             ; will be transparently compressed for browsers that support gzip or
  58.                             ; deflate encoding.  Setting an output handler automatically turns on
  59.                             ; output buffering.
  60. implicit_flush        = Off    ; Implicit flush tells PHP to tell the output layer to flush itself
  61.                             ; automatically after every output block.  This is equivalent to
  62.                             ; calling the PHP function flush() after each and every call to print()
  63.                             ; or echo() and each and every HTML block.
  64.                             ; Turning this option on has serious performance implications, and
  65.                             ; is generally recommended for debugging purposes only.
  66. allow_call_time_pass_reference    = Off    ; whether to enable the ability to force arguments to be 
  67.                                         ; passed by reference at function-call time.  This method
  68.                                         ; is deprecated, and is likely to be unsupported in future
  69.                                         ; versions of PHP/Zend.  The encouraged method of specifying
  70.                                         ; which arguments should be passed by reference is in the
  71.                                         ; function declaration.  You're encouraged to try and
  72.                                         ; turn this option Off, and make sure your scripts work
  73.                                         ; properly with it, to ensure they will work with future
  74.                                         ; versions of the language (you will receive a warning
  75.                                         ; each time you use this feature, and the argument will
  76.                                         ; be passed by value instead of by reference).
  77.  
  78. ; Safe Mode
  79. safe_mode        =    Off
  80. safe_mode_exec_dir    =
  81. safe_mode_allowed_env_vars = PHP_                    ; Setting certain environment variables
  82.                                                     ; may be a potential security breach.
  83.                                                     ; This directive contains a comma-delimited
  84.                                                     ; list of prefixes.  In Safe Mode, the
  85.                                                     ; user may only alter environment
  86.                                                     ; variables whose names begin with the
  87.                                                     ; prefixes supplied here.
  88.                                                     ; By default, users will only be able
  89.                                                     ; to set environment variables that begin
  90.                                                     ; with PHP_ (e.g. PHP_FOO=BAR).
  91.                                                     ; Note:  If this directive is empty, PHP
  92.                                                     ; will let the user modify ANY environment
  93.                                                     ; variable!
  94. safe_mode_protected_env_vars = LD_LIBRARY_PATH        ; This directive contains a comma-
  95.                                                     ; delimited list of environment variables,
  96.                                                     ; that the end user won't be able to
  97.                                                     ; change using putenv().
  98.                                                     ; These variables will be protected
  99.                                                     ; even if safe_mode_allowed_env_vars is
  100.                                                     ; set to allow to change them.
  101.  
  102.  
  103. disable_functions    =                                ; This directive allows you to disable certain
  104.                                                     ; functions for security reasons.  It receives
  105.                                                     ; a comma separated list of function names.
  106.                                                     ; This directive is *NOT* affected by whether
  107.                                                     ; Safe Mode is turned on or off.
  108.  
  109.  
  110. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in <font color=???> would work.
  111. highlight.string    =    #DD0000
  112. highlight.comment    =    #FF8000
  113. highlight.keyword    =    #007700
  114. highlight.bg        =    #FFFFFF
  115. highlight.default    =    #0000BB
  116. highlight.html        =    #000000
  117.  
  118. ; Misc
  119. expose_php    =    On        ; Decides whether PHP may expose the fact that it is installed on the
  120.                         ; server (e.g., by adding its signature to the Web server header).
  121.                         ; It is no security threat in any way, but it makes it possible
  122.                         ; to determine whether you use PHP on your server or not.
  123.  
  124.  
  125.  
  126. ;;;;;;;;;;;;;;;;;;;
  127. ; Resource Limits ;
  128. ;;;;;;;;;;;;;;;;;;;
  129.  
  130. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  131. memory_limit = 8M            ; Maximum amount of memory a script may consume (8MB)
  132.  
  133.  
  134. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  135. ; Error handling and logging ;
  136. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  137. ; error_reporting is a bit-field.  Or each number up to get desired error reporting level
  138. ; E_ALL                - All errors and warnings
  139. ; E_ERROR            - fatal run-time errors
  140. ; E_WARNING            - run-time warnings (non fatal errors)
  141. ; E_PARSE            - compile-time parse errors
  142. ; E_NOTICE            - run-time notices (these are warnings which often result from a bug in
  143. ;                      your code, but it's possible that it was intentional (e.g., using an
  144. ;                      uninitialized variable and relying on the fact it's automatically
  145. ;                      initialized to an empty string)
  146. ; E_CORE_ERROR        - fatal errors that occur during PHP's initial startup
  147. ; E_CORE_WARNING    - warnings (non fatal errors) that occur during PHP's initial startup
  148. ; E_COMPILE_ERROR    - fatal compile-time errors
  149. ; E_COMPILE_WARNING    - compile-time warnings (non fatal errors)
  150. ; E_USER_ERROR        - user-generated error message
  151. ; E_USER_WARNING    - user-generated warning message
  152. ; E_USER_NOTICE        - user-generated notice message
  153. ; Examples:
  154. ; error_reporting = E_ALL & ~E_NOTICE                        ; show all errors, except for notices
  155. ; error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR    ; show only errors
  156. error_reporting    =    E_ALL & ~E_NOTICE        ; Show all errors except for notices
  157. display_errors    =    On    ; Print out errors (as a part of the output)
  158.                         ; For production web sites, you're strongly encouraged
  159.                         ; to turn this feature off, and use error logging instead (see below).
  160.                         ; Keeping display_errors enabled on a production web site may reveal
  161.                         ; security information to end users, such as file paths on your Web server,
  162.                         ; your database schema or other information.
  163. display_startup_errors = Off        ; Even when display_errors is on, errors that occur during
  164.                                     ; PHP's startup sequence are not displayed.  It's strongly
  165.                                     ; recommended to keep display_startup_errors off, except for
  166.                                     ; when debugging.
  167. log_errors        =    Off    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  168.                         ; As stated above, you're strongly advised to use error logging in place of
  169.                         ; error displaying on production web sites.
  170. track_errors    =    Off    ; Store the last error/warning message in $php_errormsg (boolean)
  171. ;error_prepend_string = "<font color=ff0000>"   ; string to output before an error message
  172. ;error_append_string = "</font>"                ; string to output after an error message
  173. ;error_log    =    filename    ; log errors to specified file
  174. ;error_log    =    syslog        ; log errors to syslog (Event Log on NT, not valid in Windows 95)
  175. warn_plus_overloading    =    Off        ; warn if the + operator is used with strings
  176.  
  177.  
  178. ;;;;;;;;;;;;;;;;;
  179. ; Data Handling ;
  180. ;;;;;;;;;;;;;;;;;
  181. variables_order        =    "GPCS"    ; This directive describes the order in which PHP registers
  182.                                 ; GET, POST, Cookie, Environment and Built-in variables (G, P,
  183.                                 ; C, E & S respectively, often referred to as EGPCS or GPC).
  184.                                 ; Registration is done from left to right, newer values override
  185.                                 ; older values.
  186. register_globals    =    Off        ; Whether or not to register the EGPCS variables as global
  187.                                 ; variables.  You may want to turn this off if you don't want
  188.                                 ; to clutter your scripts' global scope with user data.  This makes
  189.                                 ; most sense when coupled with track_vars - in which case you can
  190.                                 ; access all of the GPC variables through the $HTTP_*_VARS[],
  191.                                 ; variables.
  192. register_argc_argv    =    Off        ; This directive tells PHP whether to declare the argv&argc
  193.                                 ; variables (that would contain the GET information).  If you
  194.                                 ; don't use these variables, you should turn it off for
  195.                                 ; increased performance (you should try not to use it anyway,
  196.                                 ; for less likelihood of security bugs in your code).
  197. post_max_size        =    8M        ; Maximum size of POST data that PHP will accept.
  198. gpc_order            =    "GPC"    ; This directive is deprecated.  Use variables_order instead.
  199.  
  200. ; Magic quotes
  201. magic_quotes_gpc    =    Off        ; magic quotes for incoming GET/POST/Cookie data
  202. magic_quotes_runtime=    Off        ; magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  203. magic_quotes_sybase    =    Off        ; Use Sybase-style magic quotes (escape ' with '' instead of \')
  204.  
  205. ; automatically add files before or after any PHP document
  206. auto_prepend_file    =
  207. auto_append_file    =
  208.  
  209. ; As of 4.0b4, PHP always outputs a character encoding by default in
  210. ; the Content-type: header.  To disable sending of the charset, simply
  211. ; set it to be empty.
  212. ; PHP's built-in default is text/html
  213. default_mimetype = "text/html"
  214. ;default_charset = "iso-8859-1"
  215.  
  216. ;;;;;;;;;;;;;;;;;;;;;;;;;
  217. ; Paths and Directories ;
  218. ;;;;;;;;;;;;;;;;;;;;;;;;;
  219. include_path    =                   ; UNIX: "/path1:/path2"  Windows: "\path1;\path2"
  220. doc_root        =                    ; the root of the php pages, used only if nonempty
  221. user_dir        =                    ; the directory under which php opens the script using /~username, used only if nonempty
  222. extension_dir    =    ./                ; directory in which the loadable extensions (modules) reside
  223. enable_dl        = On                ; Whether or not to enable the dl() function.
  224.                                     ; The dl() function does NOT properly work in multithreaded
  225.                                     ; servers, such as IIS or Zeus, and is automatically disabled
  226.                                     ; on them.
  227.  
  228.  
  229. ;;;;;;;;;;;;;;;;
  230. ; File Uploads ;
  231. ;;;;;;;;;;;;;;;;
  232. file_uploads    = On                ; Whether to allow HTTP file uploads
  233. ;upload_tmp_dir    =                    ; temporary directory for HTTP uploaded files (will use system default if not specified)
  234. upload_max_filesize = 2M            ; Maximum allowed size for uploaded files
  235.  
  236.  
  237. ;;;;;;;;;;;;;;;;;;
  238. ; Fopen wrappers ;
  239. ;;;;;;;;;;;;;;;;;;
  240. allow_url_fopen = On                ; Wheter to allow trating URLs like http:... or ftp:... like files
  241.  
  242.  
  243. ;;;;;;;;;;;;;;;;;;;;;;
  244. ; Dynamic Extensions ;
  245. ;;;;;;;;;;;;;;;;;;;;;;
  246. ; if you wish to have an extension loaded automaticly, use the
  247. ; following syntax:  extension=modulename.extension
  248. ; for example, on windows,
  249. ; extension=msql.dll
  250. ; or under UNIX,
  251. ; extension=msql.so
  252. ; Note that it should be the name of the module only, no directory information 
  253. ; needs to go here.  Specify the location of the extension with the extension_dir directive above.
  254.  
  255.  
  256.  
  257. ;Windows Extensions
  258. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  259. ;
  260. ;extension=php_bz2.dll
  261. ;extension=php_ctype.dll
  262. ;extension=php_cpdf.dll
  263. ;extension=php_curl.dll
  264. ;extension=php_cybercash.dll
  265. ;extension=php_db.dll
  266. ;extension=php_dba.dll
  267. ;extension=php_dbase.dll
  268. ;extension=php_domxml.dll
  269. ;extension=php_dotnet.dll
  270. ;extension=php_exif.dll
  271. ;extension=php_fdf.dll
  272. ;extension=php_filepro.dll
  273. ;extension=php_gd.dll
  274. ;extension=php_gettext.dll
  275. ;extension=php_ifx.dll
  276. ;extension=php_iisfunc.dll
  277. ;extension=php_imap.dll
  278. ;extension=php_interbase.dll
  279. ;extension=php_java.dll
  280. ;extension=php_ldap.dll
  281. ;extension=php_mhash.dll
  282. ;extension=php_mssql65.dll
  283. ;extension=php_mssql70.dll
  284. ;extension=php_oci8.dll
  285. ;extension=php_openssl.dll
  286. ;extension=php_oracle.dll
  287. ;extension=php_pdf.dll
  288. ;extension=php_pgsql.dll
  289. ;extension=php_printer.dll
  290. ;extension=php_sablot.dll
  291. ;extension=php_snmp.dll
  292. ;extension=php_sybase_ct.dll
  293. ;extension=php_yaz.dll
  294. ;extension=php_zlib.dll
  295.  
  296. ;;;;;;;;;;;;;;;;;;;
  297. ; Module Settings ;
  298. ;;;;;;;;;;;;;;;;;;;
  299.  
  300. [Syslog]
  301. define_syslog_variables    = Off    ; Whether or not to define the various syslog variables,
  302.                                 ; e.g. $LOG_PID, $LOG_CRON, etc.  Turning it off is a
  303.                                 ; good idea performance-wise.  In runtime, you can define
  304.                                 ; these variables by calling define_syslog_variables()
  305.  
  306.  
  307. [mail function]
  308. SMTP            =    localhost            ;for win32 only
  309. sendmail_from    =    me@localhost.com    ;for win32 only
  310. ;sendmail_path    =                        ;for unix only, may supply arguments as well (default is 'sendmail -t -i')
  311.  
  312. [Debugger]
  313. debugger.host    =    localhost
  314. debugger.port    =    7869
  315. debugger.enabled    =    False
  316.  
  317. [Logging]
  318. ; These configuration directives are used by the example logging mechanism.
  319. ; See examples/README.logging for more explanation.
  320. ;logging.method    = db
  321. ;logging.directory = /path/to/log/directory
  322.  
  323. [Java]
  324. ;java.class.path = .\php_java.jar
  325. ;java.home = c:\jdk
  326. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
  327. ;java.library.path = .\
  328.  
  329. [SQL]
  330. sql.safe_mode    =    Off
  331.  
  332. [ODBC]
  333. ;odbc.default_db        =    Not yet implemented
  334. ;odbc.default_user        =    Not yet implemented
  335. ;odbc.default_pw        =    Not yet implemented
  336. odbc.allow_persistent    =    On    ; allow or prevent persistent links
  337. odbc.check_persistent  =     On    ; check that a connection is still validbefore reuse
  338. odbc.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  339. odbc.max_links            =    -1    ; maximum number of links (persistent+non persistent). -1 means no limit
  340. odbc.defaultlrl    =    4096    ; Handling of LONG fields. Returns number of bytes to variables, 0 means passthru
  341. odbc.defaultbinmode    =     1    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char
  342. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation of uodbc.defaultlrl
  343. ; and uodbc.defaultbinmode
  344.  
  345. [MySQL]
  346. mysql.allow_persistent    =    On    ; allow or prevent persistent link
  347. mysql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  348. mysql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  349. mysql.default_port        =        ; default port number for mysql_connect().  If unset,
  350.                                 ; mysql_connect() will use the $MYSQL_TCP_PORT, or the mysql-tcp
  351.                                 ; entry in /etc/services, or the compile-time defined MYSQL_PORT
  352.                                 ; (in that order).  Win32 will only look at MYSQL_PORT.
  353. mysql.default_socket    =        ; default socket name for local MySQL connects.  If empty, uses the built-in
  354.                                 ; MySQL defaults
  355. mysql.default_host        =        ; default host for mysql_connect() (doesn't apply in safe mode)
  356. mysql.default_user        =        ; default user for mysql_connect() (doesn't apply in safe mode)
  357. mysql.default_password    =        ; default password for mysql_connect() (doesn't apply in safe mode)
  358.                                 ; Note that this is generally a *bad* idea to store passwords
  359.                                 ; in this file.  *Any* user with PHP access can run
  360.                                 ; 'echo cfg_get_var("mysql.default_password")' and reveal that
  361.                                 ; password!  And of course, any users with read access to this
  362.                                 ; file will be able to reveal the password as well.
  363.  
  364. [mSQL]
  365. msql.allow_persistent    =    On    ; allow or prevent persistent link
  366. msql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  367. msql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  368.  
  369. [PostgresSQL]
  370. pgsql.allow_persistent    =    On    ; allow or prevent persistent link
  371. pgsql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  372. pgsql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  373.  
  374. [Sybase]
  375. sybase.allow_persistent    =    On    ; allow or prevent persistent link
  376. sybase.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  377. sybase.max_links        =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  378. ;sybase.interface_file    =    "/usr/sybase/interfaces"
  379. sybase.min_error_severity    =    10    ; minimum error severity to display
  380. sybase.min_message_severity    =    10    ; minimum message severity to display
  381. sybase.compatability_mode    = Off    ; compatability mode with old versions of PHP 3.0.
  382.                                     ; If on, this will cause PHP to automatically assign types to results
  383.                                     ; according to their Sybase type, instead of treating them all as
  384.                                     ; strings.  This compatability mode will probably not stay around
  385.                                     ; forever, so try applying whatever necessary changes to your code,
  386.                                     ; and turn it off.
  387.  
  388. [Sybase-CT]
  389. sybct.allow_persistent    =    On        ; allow or prevent persistent link
  390. sybct.max_persistent    =    -1        ; maximum number of persistent links. -1 means no limit
  391. sybct.max_links            =    -1        ; maximum number of links (persistent+non persistent).  -1 means no limit
  392. sybct.min_server_severity    =    10    ; minimum server message severity to display
  393. sybct.min_client_severity    =    10    ; minimum client message severity to display
  394.  
  395. [bcmath]
  396. bcmath.scale    =    0    ; number of decimal digits for all bcmath functions
  397.  
  398. [browscap]
  399. ;browscap    =    extra/browscap.ini
  400.  
  401. [Informix]
  402. ifx.default_host        =        ; default host for ifx_connect() (doesn't apply in safe mode)
  403. ifx.default_user        =        ; default user for ifx_connect() (doesn't apply in safe mode)
  404. ifx.default_password        =        ; default password for ifx_connect() (doesn't apply in safe mode)
  405. ifx.allow_persistent        =    On    ; allow or prevent persistent link
  406. ifx.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  407. ifx.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  408. ifx.textasvarchar        =    0    ; if set on, select statements return the contents of a text blob instead of it's id
  409. ifx.byteasvarchar        =    0    ; if set on, select statements return the contents of a byte blob instead of it's id
  410. ifx.charasvarchar        =    0    ; trailing blanks are stripped from fixed-length char columns. May help the life
  411.                         ; of Informix SE users. 
  412. ifx.blobinfile            =    0    ; if set on, the contents of text&byte blobs are dumped to a file instead of
  413.                         ; keeping them in memory
  414. ifx.nullformat            =    0    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  415.                         ; NULL's are returned as string 'NULL'.
  416.  
  417. [Session]
  418. session.save_handler      = files   ; handler used to store/retrieve data
  419. session.save_path         = /tmp    ; argument passed to save_handler
  420.                                     ; in the case of files, this is the
  421.                                     ; path where data files are stored
  422. session.use_cookies       = 1       ; whether to use cookies
  423. session.name              = PHPSESSID  
  424.                                     ; name of the session
  425.                                     ; is used as cookie name
  426. session.auto_start        = 0       ; initialize session on request startup
  427. session.cookie_lifetime   = 0       ; lifetime in seconds of cookie
  428.                                     ; or if 0, until browser is restarted
  429. session.cookie_path       = /       ; the path the cookie is valid for
  430. session.cookie_domain     =         ; the domain the cookie is valid for
  431. session.serialize_handler = php     ; handler used to serialize data
  432.                                     ; php is the standard serializer of PHP
  433. session.gc_probability    = 1       ; percentual probability that the 
  434.                                     ; 'garbage collection' process is started
  435.                                     ; on every session initialization
  436. session.gc_maxlifetime    = 1440    ; after this number of seconds, stored
  437.                                     ; data will be seen as 'garbage' and
  438.                                     ; cleaned up by the gc process
  439. session.referer_check     =         ; check HTTP Referer to invalidate 
  440.                                     ; externally stored URLs containing ids
  441. session.entropy_length    = 0       ; how many bytes to read from the file
  442. session.entropy_file      =         ; specified here to create the session id
  443. ; session.entropy_length    = 16
  444. ; session.entropy_file      = /dev/urandom
  445. session.cache_limiter     = nocache ; set to {nocache,private,public} to
  446.                                     ; determine HTTP caching aspects
  447. session.cache_expire      = 180     ; document expires after n minutes
  448. session.use_trans_sid     = 1       ; use transient sid support if enabled
  449.                                     ; by compiling with --enable-trans-sid
  450.  
  451. url_rewriter.tags         = "a=href,area=href,frame=src,input=src,form=fakeentry"
  452.  
  453. [MSSQL]
  454. mssql.allow_persistent        =    On    ; allow or prevent persistent link
  455. mssql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  456. mssql.max_links                =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  457. mssql.min_error_severity    =    10    ; minimum error severity to display
  458. mssql.min_message_severity    =    10    ; minimum message severity to display
  459. mssql.compatability_mode    =  Off    ; compatability mode with old versions of PHP 3.0.
  460. ;mssql.textlimit            = 4096    ; valid range 0 - 2147483647 default = 4096
  461. ;mssql.textsize                = 4096    ; valid range 0 - 2147483647 default = 4096
  462. ;mssql.batchsize            =     0  ; limits the number of records in each bach. 0 = all records in one batch.
  463.  
  464. [Assertion]
  465. ;assert.active                =    Off    ; assert(expr); does nothing by default
  466. ;assert.warning                =    On    ; issue a PHP warning for each failed assertion.
  467. ;assert.bail                =    Off    ; don't bail out by default.
  468. ;assert.callback            =    0    ; user-function to be called if an assertion fails.
  469. ;assert.quiet_eval            =    0    ; eval the expression with current error_reporting(). set to true if you want error_reporting(0) around the eval().
  470.  
  471. [Ingres II]
  472. ingres.allow_persistent        =    On    ; allow or prevent persistent link
  473. ingres.max_persistent        =    -1    ; maximum number of persistent links. (-1 means no limit)
  474. ingres.max_links            =    -1    ; maximum number of links, including persistents (-1 means no limit)
  475. ingres.default_database        =        ; default database (format : [node_id::]dbname[/srv_class]
  476. ingres.default_user            =        ; default user
  477. ingres.default_password        =        ; default password
  478.  
  479. [Verisign Payflow Pro]
  480. pfpro.defaulthost             =    "test.signio.com"    ; default Signio server
  481. pfpro.defaultport             =    443    ; default port to connect to
  482. pfpro.defaulttimeout        =    30    ; default timeout in seconds
  483.  
  484. ; pfpro.proxyaddress         =        ; default proxy IP address (if required)
  485. ; pfpro.proxyport             =        ; default proxy port
  486. ; pfpro.proxylogon             =        ; default proxy logon
  487. ; pfpro.proxypassword         =        ; default proxy password
  488.  
  489. [Sockets]
  490. sockets.use_system_read        =    Off    ; Use the system read() function instead of
  491.                         ; the php_read() wrapper.
  492. ; Local Variables:
  493. ; tab-width: 4
  494. ; End:
  495.